home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / WRITEPAD.PAK / MISC.C < prev    next >
C/C++ Source or Header  |  1997-05-06  |  3KB  |  126 lines

  1. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  2. // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  3. // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  4. // PARTICULAR PURPOSE.
  5. //
  6. // Copyright (C) 1993-1995  Microsoft Corporation.  All Rights Reserved.
  7. //
  8. //  MODULE:   misc.c
  9. //
  10. //  PURPOSE:  Contains all helper functions "global" to the application.
  11. //
  12. //  FUNCTIONS:
  13. //    CenterWindow - Center one window over another.
  14. //    OnIdle()     - Handles background processing.  In this case, we use
  15. //                   it to update the toolbar buttons.
  16. //
  17. //  COMMENTS:
  18. //
  19. //
  20.  
  21. #include <windows.h>            // required for all Windows applications
  22. #include <windowsx.h>
  23. #include "globals.h"            // prototypes specific to this application
  24. #include "toolbar.h"
  25.  
  26.  
  27. //
  28. //  FUNCTION: CenterWindow(HWND, HWND)
  29. //
  30. //  PURPOSE:  Center one window over another.
  31. //
  32. //  PARAMETERS:
  33. //    hwndChild - The handle of the window to be centered.
  34. //    hwndParent- The handle of the window to center on.
  35. //
  36. //  RETURN VALUE:
  37. //
  38. //    TRUE  - Success
  39. //    FALSE - Failure
  40. //
  41. //  COMMENTS:
  42. //
  43. //    Dialog boxes take on the screen position that they were designed
  44. //    at, which is not always appropriate. Centering the dialog over a
  45. //    particular window usually results in a better position.
  46. //
  47.  
  48. BOOL CenterWindow(HWND hwndChild, HWND hwndParent)
  49. {
  50.     RECT    rcChild, rcParent;
  51.     int     cxChild, cyChild, cxParent, cyParent;
  52.     int     cxScreen, cyScreen, xNew, yNew;
  53.     HDC     hdc;
  54.  
  55.     // Get the Height and Width of the child window
  56.     GetWindowRect(hwndChild, &rcChild);
  57.     cxChild = rcChild.right - rcChild.left;
  58.     cyChild = rcChild.bottom - rcChild.top;
  59.  
  60.     // Get the Height and Width of the parent window
  61.     GetWindowRect(hwndParent, &rcParent);
  62.     cxParent = rcParent.right - rcParent.left;
  63.     cyParent = rcParent.bottom - rcParent.top;
  64.  
  65.     // Get the display limits
  66.     hdc = GetDC(hwndChild);
  67.     cxScreen = GetDeviceCaps(hdc, HORZRES);
  68.     cyScreen = GetDeviceCaps(hdc, VERTRES);
  69.     ReleaseDC(hwndChild, hdc);
  70.  
  71.     // Calculate new X position, then adjust for screen
  72.     xNew = rcParent.left + ((cxParent - cxChild) / 2);
  73.     if (xNew < 0)
  74.     {
  75.         xNew = 0;
  76.     }
  77.     else if ((xNew + cxChild) > cxScreen)
  78.     {
  79.         xNew = cxScreen - cxChild;
  80.     }
  81.  
  82.     // Calculate new Y position, then adjust for screen
  83.     yNew = rcParent.top  + ((cyParent - cyChild) / 2);
  84.     if (yNew < 0)
  85.     {
  86.         yNew = 0;
  87.     }
  88.     else if ((yNew + cyChild) > cyScreen)
  89.     {
  90.         yNew = cyScreen - cyChild;
  91.     }
  92.  
  93.     // Set it, and return
  94.     return SetWindowPos(hwndChild,
  95.                         NULL,
  96.                         xNew, yNew,
  97.                         0, 0,
  98.                         SWP_NOSIZE | SWP_NOZORDER);
  99. }
  100.  
  101.  
  102. //
  103. //  FUNCTION: OnIdle()
  104. //
  105. //  PURPOSE: 
  106. //    To call a routine that updates the active/inactive status of
  107. //    the toolbar buttons.  We must do this to accurately reflect
  108. //    buttons such as Save, Cut, Copy and Paste.
  109. //
  110. //  PARAMETERS:
  111. //    None
  112. //
  113. //  RETURN VALUE:
  114. //    Always returns 0
  115. //
  116. //  COMMENTS:
  117. //    This routine is called from WinMain, and is only called when
  118. //    there are no messages in our message queue.
  119. //
  120.  
  121. LRESULT OnIdle(VOID)
  122. {
  123.     UpdateToolbar();
  124.     return 0;
  125. }
  126.